home *** CD-ROM | disk | FTP | other *** search
/ Aminet 50 / Aminet 50 (2002)(GTI - Schatztruhe)[!][Aug 2002].iso / Aminet / text / edit / tecoc-146.lha / exectx.c < prev    next >
C/C++ Source or Header  |  1991-07-05  |  530b  |  19 lines

  1. /*****************************************************************************
  2.  
  3.     ExeCtX()
  4.  
  5.     This function executes a control-X command.
  6.  
  7. *****************************************************************************/
  8.  
  9. #include "zport.h"        /* define portability identifiers */
  10. #include "tecoc.h"        /* define general identifiers */
  11. #include "defext.h"        /* define external global variables */
  12.  
  13. DEFAULT ExeCtX()        /* execute a ^X (control-X) command */
  14. {
  15.     DBGFEN(1,"ExeCtX",NULL);
  16.     DBGFEX(1,DbgFNm,"DoFlag()");
  17.     return DoFlag(&SMFlag);
  18. }
  19.